projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b75f464
)
Boot parameter check fix
author
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 2 Feb 2016 01:52:03 +0000
(
02:52
+0100)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 2 Feb 2016 01:52:03 +0000
(
02:52
+0100)
* process.c (send_process): Fix test for boot parameters noted
by Andy Moreton.
src/process.c
patch
|
blob
|
history
diff --git
a/src/process.c
b/src/process.c
index 14be3b0f9c333b2097397c80bddfd7c519a5b8ed..762778e529346d2782b5d6f9c12e8ec45efe2055 100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-5904,7
+5904,7
@@
send_process (Lisp_Object proc, const char *buf, ptrdiff_t len,
#ifdef HAVE_GNUTLS
/* The TLS connection hasn't been set up yet, so we can't write
anything on the socket. */
- if (
p->gnutls_boot_parameters
)
+ if (
!NILP (p->gnutls_boot_parameters)
)
return;
#endif